crypto/elliptic/internal/nistec.P521Point.y (field)

21 uses

	crypto/elliptic/internal/nistec (current package)
		p521.go#L47: 	x, y, z *fiat.P521Element
		p521.go#L54: 		y: new(fiat.P521Element).One(),
		p521.go#L63: 		y: new(fiat.P521Element),
		p521.go#L71: 	p.y.Set(q.y)
		p521.go#L100: 		p.y.Set(y)
		p521.go#L150: 	yy := new(fiat.P521Element).Mul(p.y, zinv)
		p521.go#L164: 	t1 := new(fiat.P521Element).Mul(p1.y, p2.y) // t1 := Y1 * Y2
		p521.go#L166: 	t3 := new(fiat.P521Element).Add(p1.x, p1.y) // t3 := X1 + Y1
		p521.go#L167: 	t4 := new(fiat.P521Element).Add(p2.x, p2.y) // t4 := X2 + Y2
		p521.go#L171: 	t4.Add(p1.y, p1.z)                          // t4 := Y1 + Z1
		p521.go#L172: 	x3 := new(fiat.P521Element).Add(p2.y, p2.z) // X3 := Y2 + Z2
		p521.go#L208: 	q.y.Set(y3)
		p521.go#L219: 	t1 := new(fiat.P521Element).Square(p.y)    // t1 := Y ^ 2
		p521.go#L221: 	t3 := new(fiat.P521Element).Mul(p.x, p.y)  // t3 := X * Y
		p521.go#L245: 	t0.Mul(p.y, p.z)                           // t0 := Y * Z
		p521.go#L254: 	q.y.Set(y3)
		p521.go#L262: 	q.y.Select(p1.y, p2.y, cond)